flutter 오류 could not find included file 'Generated.xcconfig' in search paths

마지막 수정일: 2025. 05. 02.

문제상황

flutter git clone 했을 때 실행 시
could not find included file 'Generated.xcconfig' in search paths error

해결방법

flutter, pod 설치가 안 되어 있어서 그렇다.

BASH
brew install --cask flutter
flutter clean && flutter pub get && flutter build ios && cd ios/ && pod install && cd .. && flutter build ios

flutter 설치 후 flutter 서브 패키지 설치 후 pod 설치하면 됨